home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1997 January / macformat46.iso / File Maker Pro 3.0 Tutorial / File Maker Pro 3.0 / Templates / FileMaker And Apple Events / Syntax Examples / Events / Count Examples next >
Text File  |  1996-06-05  |  336b  |  9 lines

  1. tell application "FileMaker Pro"
  2.     count record of first document -- # records found
  3.     count record of first database -- total records in file
  4.     count layout of database "Test1"
  5.     count cell of last database
  6.     count field of layout 1 of database "Test1"
  7.     count FileMaker script of database "Test1"
  8.     count request of database "Test1"
  9. end tell